Conditions | 1 |
Total Lines | 5 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | import {MigrationInterface, QueryRunner} from "typeorm"; |
||
11 | |||
12 | public async down(queryRunner: QueryRunner): Promise<void> { |
||
13 | await queryRunner.query(`ALTER TABLE "ingestion" DROP CONSTRAINT "FK_bedba27d2f82d30b329ca7248f1"`); |
||
14 | await queryRunner.query(`DROP TABLE "ingestion"`); |
||
15 | await queryRunner.query(`DROP TYPE "ingestion_state_enum"`); |
||
16 | } |
||
19 |